home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Adobe Air 1.5
/
AdobeAIRInstaller.exe
/
setup.swf
/
scripts
/
mx
/
managers
/
ILayoutManager.as
< prev
next >
Wrap
Text File
|
2008-10-29
|
729b
|
26 lines
package mx.managers
{
import flash.events.IEventDispatcher;
public interface ILayoutManager extends IEventDispatcher
{
function validateNow() : void;
function validateClient(param1:ILayoutManagerClient, param2:Boolean = false) : void;
function isInvalid() : Boolean;
function invalidateDisplayList(param1:ILayoutManagerClient) : void;
function set usePhasedInstantiation(param1:Boolean) : void;
function invalidateSize(param1:ILayoutManagerClient) : void;
function get usePhasedInstantiation() : Boolean;
function invalidateProperties(param1:ILayoutManagerClient) : void;
}
}